home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Text / tex / latex2rtf.readme < prev    next >
Text File  |  2004-09-23  |  3KB  |  74 lines

  1. Short:    Converts text files in LaTeX format to rich text format (RTF)
  2. Author:   latex2rtf-developers@lists.sourceforge.net (Scott Prahl), Ported by chwalek@poczta.onet.pl (Pawel Chwalowski)
  3. Uploader: chwalek@poczta.onet.pl (Pawel Chwalowski)
  4. Version:  1.9.16
  5. Type:     text/tex
  6. Requires: m68020-60, ixemul.library
  7.  
  8. latex2rtf is a translator program that translates LaTeX text into the
  9. RTF format used by various text processors, most notably Word.
  10.  
  11. For the Copyright of the Program see the file Copyright.
  12.  
  13. As of version 1.9.13, latex2rtf supports converting equations to
  14. bitmaps. This requires TeX, Ghostscript and ImageMagick. See
  15. scripts/README.
  16.  
  17. Reporting bugs to the homepage at Sourceforge
  18.  
  19.             http://sourceforge.net/projects/latex2rtf/
  20.  
  21. latex2rtf was compiled to search for its configuration files in "S:cfg".
  22. If the configuration files are moved then either
  23.     1) set the environment variable RTFPATH to this new location, or
  24.     2) use the command line option -P path:to/cfg
  25.  
  26.  
  27. Usage: latex2rtf [options] input[.tex]
  28.  
  29. Options:
  30.   -a auxfile       use LaTeX auxfile rather than input.aux
  31.   -b bblfile       use BibTex bblfile rather than input.bbl)
  32.   -C codepage      latex encoding charset (latin1, cp850, raw, etc.)
  33.   -d level         debugging output (level is 0-6)
  34.   -f#              field handling
  35.        -f0          do not use fields
  36.        -f1          use fields for equations but not \ref{} & \cite{}
  37.        -f2          use fields for \cite{} & \ref{}, but not equations
  38.        -f3          use fields when possible (default)
  39.   -F               use LaTeX to convert all figures to bitmaps
  40.   -D dpi           number of dots per inch for bitmaps
  41.   -h               display help
  42.   -i language      idiom or language (e.g., german, french)
  43.   -l               use latin1 encoding (default)
  44.   -M#              math equation handling
  45.        -M1          displayed equations to RTF
  46.        -M2          inline equations to RTF
  47.        -M3          inline and displayed equations to RTF (default)
  48.        -M4          displayed equations to bitmap
  49.        -M6          inline equations to RTF and displayed equations to bitmaps
  50.        -M8          inline equations to bitmap
  51.        -M12         inline and displayed equations to bitmaps
  52.        -M16         insert Word comment field that the original equation text
  53.   -o outputfile    file for RTF output
  54.   -p               option to avoid bug in Word for some equations
  55.   -P path          paths to *.cfg & latex2png
  56.   -S               use ';' to separate args in RTF fields
  57.   -se#             scale factor for bitmap equations
  58.   -sf#             scale factor for bitmap figures
  59.   -T /path/to/tmp  temporary directory
  60.   -v               version information
  61.   -V               version information
  62.   -W               include warnings in RTF
  63.   -Z#              add # of '}'s at end of rtf file (# is 0-9)
  64.  
  65. Examples:
  66.   latex2rtf foo                       convert foo.tex to foo.rtf
  67.   latex2rtf <foo >foo.RTF             convert foo to foo.RTF
  68.   latex2rtf -P ./cfg/:./scripts/ foo  use alternate cfg and latex2png files
  69.   latex2rtf -M12 foo                  replace equations with bitmaps
  70.   latex2rtf -i russian foo            assume russian tex conventions
  71.   latex2rtf -C raw foo                retain font encoding in rtf file
  72.   latex2rtf -f0 foo                   create foo.rtf without fields
  73.   latex2rtf -d4 foo                   lots of debugging information
  74.